home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / telecomm / figlet21.lzh / FIGLET_2.11 / SHOWFIG.SH < prev   
Text File  |  1994-09-10  |  246b  |  18 lines

  1. #!sh
  2. # Prints out a list of available Figlet fonts
  3. # in both ASCII and the font itself.
  4.  
  5. pushd $FIGLETFONTS
  6. echo "Figlet fonts:"
  7. for f in *.flf
  8. do
  9.     echo $f :
  10.     echo $f | figlet -f $f
  11. done
  12. echo "Control files:"
  13. for f in *.flc
  14. do
  15.     echo $f
  16. done
  17. popd
  18.